home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / MNetsrc.hqx / Mac TCP_IP Source v.33 / mac.h < prev    next >
Text File  |  1989-03-14  |  494b  |  29 lines

  1. /* Asynch controller control block */
  2. #define MAX_STORE 1024
  3.  
  4. struct Store_input {
  5.     char *head;
  6.     char *store;
  7.     char *tail;
  8.     int   amt;
  9.     unsigned bufsize;
  10. };
  11.  
  12. struct asy {
  13.     unsigned int speed;        /* Line speed */
  14.     int    portIn;
  15.     int portOut;
  16.     int    devopen;
  17.     char *tty;
  18.     int addr;
  19.     char *recv_buf;
  20. };
  21. extern struct asy asy[];
  22. extern unsigned nasy;        /* Actual number of asynch lines */
  23. #define    ASY_MAX    2        /* Two asynch ports on the MAC */
  24. struct RemoveIt {
  25.     struct RemoveIt *next;
  26.     char *name_ptr;
  27. };
  28.  
  29.